home *** CD-ROM | disk | FTP | other *** search
/ NeXT Education Software Sampler 1992 Fall / NeXT Education Software Sampler 1992 Fall.iso / SoundAndMusic / cmix / lpc / analysis / Makefile < prev   
Makefile  |  1991-12-17  |  412b  |  29 lines

  1. CFLAGS =  -O
  2. PROGS = lpc 
  3.  
  4. INCLUDE = -I/../../H/sfheader.h
  5.  
  6. CC = cc $(INCLUDE) 
  7.  
  8. LDFLAGS =  -lm
  9. CMIX_SYS = ../../sys
  10.  
  11. all:    lpc 
  12.  
  13. clean:
  14.     rm -f *.o
  15.  
  16. LPC_O = lpc.o lpc.anallpc.o\
  17.     $(CMIX_SYS)/printsf.o\
  18.     $(CMIX_SYS)/sfcodes.o alpole.o 
  19.  
  20. LPC_O = lpc.o lpc.anallpc.o ../../sys/wheader.o\
  21.      $(CMIX_SYS)/printsf.o\
  22.      $(CMIX_SYS)/sfcodes.o alpole.o 
  23. .c:
  24.      $(CC) -c  *.c
  25.  
  26. lpc:     $(LPC_O) 
  27.     cc -o lpc $(LPC_O) $(LDFLAGS)
  28.  
  29.